- Description:
This key represents an individual metadata entry object in the
preview.metadataarray.The value is an object that can contain
text,image,icon,icon_color, andicon_background_colorproperties. Each metadata entry is displayed on Cards in the Collection browser, Structures, and Snippets.- Appears in:
- Type:
Object- Properties:
This key defines the icon displayed on Cards in the Collection browser, Structures, and Snippets.
The value can be an array or a single value, and reference a key, template, text string, that results in one of Google's Material Symbols. When multiple entries are provided, CloudCannon will use them in order as fallback options.
For Cards in the Collection Browser, this key defaults to the value of
collections_config.*.icon. Otherwise, this key has no default.Show examplesHide examples
In this example, we have configured the icon for Cards in the
blogCollection to use theedit_noteicon.Copied to clipboardcollections_config: blog: preview: icon: edit_note{ "collections_config": { "blog": { "preview": { "icon": "edit_note" } } } }In this example, we have configured the icon for Cards in the
blogCollection with an array of values to provide fallback options. CloudCannon will use the value oflogofirst, then fall back to theedit_noteicon.Copied to clipboardcollections_config: blog: preview: icon: - key: logo - edit_note{ "collections_config": { "blog": { "preview": { "icon": [ { "key": "logo" }, "edit_note" ] } } } }This key defines the background color of the icon displayed on Cards in the Collection browser, Structures, and Snippets.
The value can be an array or a single value, and reference a key, template, or text string. When multiple entries are provided, CloudCannon will use them in order as fallback options.
Color values can be hex codes (e.g.,
#ff0000), CSS color names, or reference a data key that contains a color value.Show examplesHide examples
In this example, we have configured the icon background color for Cards in the
blogCollection with an array of values to provide fallback options. CloudCannon will use the value ofbg_colorfirst, then fall back to the static hex color value.Copied to clipboardcollections_config: blog: preview: icon_background_color: - key: bg_color - text: '#f0f0f0'{ "collections_config": { "blog": { "preview": { "icon_background_color": [ { "key": "bg_color" }, { "text": "#f0f0f0" } ] } } } }This key defines the color of the icon displayed on Cards in the Collection browser, Structures, and Snippets.
The value can be an array or a single value, and reference a key, template, or text string. When multiple entries are provided, CloudCannon will use them in order as fallback options.
Color values can be hex codes (e.g.,
#ff0000), CSS color names, or reference a data key that contains a color value.Show examplesHide examples
In this example, we have configured the icon color for Cards in the
blogCollection with an array of values to provide fallback options. CloudCannon will use the value ofcolorfirst, then fall back to the static hex color value.Copied to clipboardcollections_config: blog: preview: icon_color: - key: color - text: '#ff0000'{ "collections_config": { "blog": { "preview": { "icon_color": [ { "key": "color" }, { "text": "#ff0000" } ] } } } }This key defines the image displayed on Cards in the Collection browser, Structures, and Snippets.
The value can be an array or a single value, and reference a key, template, or text string that results in a file path or URL to an image file. When multiple entries are provided, CloudCannon will use them in order as fallback options.
Show examplesHide examples
In this example, we have configured the image for Cards in the
blogCollection with an array of values to provide fallback options. CloudCannon will use the value offeatured_imagefirst, then the{thumbnail}template, and finally fall back to the static text value.Copied to clipboardcollections_config: blog: preview: image: - key: featured_image - template: '{thumbnail}' - text: default-image.jpg{ "collections_config": { "blog": { "preview": { "image": [ { "key": "featured_image" }, { "template": "{thumbnail}" }, { "text": "default-image.jpg" } ] } } } }In this example, we have configured the image for Structure Cards to display the
profile_picturekey.Copied to clipboard_structures: staff: values: - value: _type: Employee name: profile_picture: preview: image: - key: profile_picture{ "_structures": { "staff": { "values": [ { "value": { "_type": "Employee", "name": null, "profile_picture": null }, "preview": { "image": [ { "key": "profile_picture" } ] } } ] } } }This key defines the main text displayed on Cards in the Collection browser, Structures, and Snippets.
The value can be an array or a single value, and reference a key, template, or text string. When multiple entries are provided, CloudCannon will use them in order as fallback options.
Show examplesHide examples
In this example, we have configured the main text for Cards in the
blogCollection with an array of values to provide fallback options. CloudCannon will use the value oftitlefirst, then the{name}template, and finally fall back to the static text value.Copied to clipboardcollections_config: blog: preview: text: - key: title - template: '{name}' - text: Untitled{ "collections_config": { "blog": { "preview": { "text": [ { "key": "title" }, { "template": "{name}" }, { "text": "Untitled" } ] } } } }In this example, we have configured the main text for Cards in the
blogCollection to display thetitlekey.Copied to clipboardcollections_config: blog: preview: text: - key: title{ "collections_config": { "blog": { "preview": { "text": [ { "key": "title" } ] } } } }- Examples:
In this example, we have configured a metadata entry for Cards in the
blogCollection to display the URL using a template.Copied to clipboardcollections_config: blog: preview: metadata: - template: '[url]'{ "collections_config": { "blog": { "preview": { "metadata": [ { "template": "[url]" } ] } } } }